home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_053 / spreadsheet / makefile < prev    next >
Makefile  |  1992-05-06  |  594b  |  38 lines

  1. #    Make file for AMIAG version of DBW_VC
  2. #
  3. #    v1.0    870117    DBW
  4. #
  5.  
  6. # On U**X systems, compile with:
  7. #    % cc -c -DU__X -O file.c
  8. #
  9. # On VMS system, compile with:
  10. #    $ cc/define=VMS file.c
  11. #    also.... rename y.tab.h to y_tab.h
  12.  
  13. OBJS    = sc.o lex.o gram.o interp.o cmds.o curses.o
  14. INCL    = experres.h sc.h statres.h y.tab.h
  15. DOCS    = README vc.man
  16.  
  17. vc :    $(OBJS)
  18.     ln -v -o vc $(OBJS) -lm -lc
  19.  
  20. lex.o :    lex.c $(INCL)
  21.     cc lex.c
  22.  
  23. interp.o : interp.c $(INCL)
  24.     cc interp.c
  25.  
  26. sc.o : sc.c $(INCL)
  27.     cc sc.c
  28.  
  29. cmds.o : cmds.c $(INCL)
  30.     cc cmds.c
  31.  
  32. curses.o : curses.c $(INCL)
  33.     cc curses.c
  34.  
  35. gram.o : gram.c $(INCL)
  36.     cc gram.c
  37.  
  38.